home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsmatrix.h < prev    next >
C/C++ Source or Header  |  1997-02-27  |  3KB  |  76 lines

  1. /* Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsmatrix.h */
  20. /* Definition of matrices and client interface to matrix routines */
  21.  
  22. #ifndef gsmatrix_INCLUDED
  23. #  define gsmatrix_INCLUDED
  24.  
  25. /* See p. 65 of the PostScript manual for the semantics of */
  26. /* transformation matrices. */
  27.  
  28. /* Structure for a transformation matrix. */
  29. #define _matrix_body\
  30.     float xx, xy, yx, yy, tx, ty
  31. struct gs_matrix_s {
  32.     _matrix_body;
  33. };
  34. #ifndef gs_matrix_DEFINED
  35. #  define gs_matrix_DEFINED
  36. typedef struct gs_matrix_s gs_matrix;
  37. #endif
  38. /* Macro for initializing constant matrices */
  39. #define constant_matrix_body(xx, xy, yx, yy, tx, ty)\
  40.     (float)(xx), (float)(xy), (float)(yx),\
  41.     (float)(yy), (float)(tx), (float)(ty)
  42.  
  43. /* Macros for testing whether matrix coefficients are zero, */
  44. /* for shortcuts when the matrix is simple. */
  45. #define is_xxyy(pmat) is_fzero2((pmat)->xy, (pmat)->yx)
  46. #define is_xyyx(pmat) is_fzero2((pmat)->xx, (pmat)->yy)
  47.  
  48. /* The identity matrix (for structure initialization) */
  49. #define identity_matrix_body\
  50.     constant_matrix_body(1, 0, 0, 1, 0, 0)
  51.  
  52. /* Matrix creation */
  53. void    gs_make_identity(P1(gs_matrix *));
  54. int    gs_make_translation(P3(floatp, floatp, gs_matrix *)),
  55.     gs_make_scaling(P3(floatp, floatp, gs_matrix *)),
  56.     gs_make_rotation(P2(floatp, gs_matrix *));
  57.  
  58. /* Matrix arithmetic */
  59. int    gs_matrix_multiply(P3(const gs_matrix *, const gs_matrix *, gs_matrix *)),
  60.     gs_matrix_invert(P2(const gs_matrix *, gs_matrix *)),
  61.     gs_matrix_translate(P4(const gs_matrix *, floatp, floatp, gs_matrix *)),
  62.     gs_matrix_scale(P4(const gs_matrix *, floatp, floatp, gs_matrix *)),
  63.     gs_matrix_rotate(P3(const gs_matrix *, floatp, gs_matrix *));
  64.  
  65. /* Coordinate transformation */
  66. int    gs_point_transform(P4(floatp, floatp, const gs_matrix *, gs_point *)),
  67.     gs_point_transform_inverse(P4(floatp, floatp, const gs_matrix *, gs_point *)),
  68.     gs_distance_transform(P4(floatp, floatp, const gs_matrix *, gs_point *)),
  69.     gs_distance_transform_inverse(P4(floatp, floatp, const gs_matrix *, gs_point *)),
  70.     gs_points_bbox(P2(const gs_point [4], gs_rect *)),
  71.     gs_bbox_transform_only(P3(const gs_rect *, const gs_matrix *, gs_point [4])),
  72.     gs_bbox_transform(P3(const gs_rect *, const gs_matrix *, gs_rect *)),
  73.     gs_bbox_transform_inverse(P3(const gs_rect *, const gs_matrix *, gs_rect *));
  74.  
  75. #endif                    /* gsmatrix_INCLUDED */
  76.